home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Printing / PrintPage.h < prev    next >
Text File  |  2000-06-23  |  422b  |  34 lines

  1. // PrintPage.h
  2.  
  3. #ifndef PrintPage_h
  4. #define PrintPage_h
  5.  
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9.  
  10. #include <Printing.h>
  11.  
  12. class PrintManager;
  13.  
  14. class PrintPage
  15.   {
  16.     private:
  17.         TPrPort *port;
  18.         
  19.         static bool pageExists;
  20.         
  21.         // not implemented:
  22.             PrintPage( const PrintPage& );
  23.             void operator=( const PrintPage& );
  24.     
  25.     public:
  26.         PrintPage();
  27.         ~PrintPage();
  28.         
  29.         void Start( TPrPort& );
  30.         void End();
  31.   };
  32.  
  33. #endif
  34.